home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
include
/
alloca.h
next >
Wrap
C/C++ Source or Header
|
1995-09-11
|
290b
|
20 lines
/* alloca() */
#ifndef _ALLOCA_H
#define _ALLOCA_H 1
#ifndef __SASC
#error Wrong compiler (SAS/C required)
#endif
#ifndef _PROFILE
#error Code using alloca() must be compiled with the PROFILE option
#endif
#include <stddef.h>
extern void *alloca(size_t size);
#endif /* _ALLOCA_H */